days = [10, 11, 13, 14, 15]

## Inserting 12 at index 2
days.insert(2, 12)

print(days)     # => [10, 11, 12, 13, 14, 15]